:root {
    --primary-color: #FF8C42;
    --secondary-color: #2C2C2C;
    --accent-color: #FFB366;
    --text-dark: #1a1a1a;
    --text-light: #666
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden
}

.dark-mode {
    color: var(--color-6) !important
}

.contact__two-right-form-item.w-100 button,
.rlp~.mb-30 .conbix-contact-item input {
    border-radius: 22px
}

.rlp .mb-30 .conbix-contact-item input {
    color: #000 !important;
    background-color: #fff
}

.contact__two-right-form-item input::placeholder {
    color: #fff
}

.rlp .process-step h4 {
    color: #000 !important
}

.page__banner {
    display: none !important
}

.rlp .hero-section {
    background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
    color: #fff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden
}

.rlp .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,140,66,0.1)"/></svg>');
    background-size: 200px;
    opacity: .3
}

.rlp .hero-content {
    position: relative;
    z-index: 2
}

.rlp .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2
}

.rlp .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .9)
}

.rlp .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px
}

.rlp .stat-item {
    text-align: center
}

.rlp .hero-image {
    position: relative;
    z-index: 2
}

.rlp .hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3)
}

.rlp .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color)
}

.rlp .stat-label {
    font-size: .9rem;
    opacity: .8
}

.rlp .cta-button {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    text-decoration: none;
    display: inline-block
}

.rlp .cta-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 66, .3);
    color: #fff
}

.rlp .features-section {
    padding: 80px 0;
    background: #f8f9fa
}

.rlp .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark)
}

.rlp .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.rlp .feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: .3s;
    border: 2px solid transparent
}

.rlp .feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .1)
}

.rlp .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #fff
}

.rlp .feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark)
}

.rlp .feature-desc {
    color: var(--text-light);
    line-height: 1.6
}

.rlp .pricing-section {
    padding: 80px 0;
    background: #fff
}

.rlp .pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    height: 100%;
    transition: .3s;
    position: relative;
    border: 2px solid #e0e0e0
}

.rlp .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15)
}

.rlp .pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05)
}

.rlp .pricing-card.featured::before {
    content: '⭐ BEST VALUE';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .85rem
}

.rlp .plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark)
}

.rlp .plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px
}

.rlp .plan-price small {
    font-size: 1rem;
    color: var(--text-light)
}

.rlp .plan-duration {
    color: var(--text-light);
    margin-bottom: 30px
}

.rlp .plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px
}

.rlp .plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    font-size: .95rem
}

.rlp .plan-features li:last-child {
    border-bottom: none
}

.rlp .plan-features i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 3px
}

.rlp .plan-features .not-included {
    color: #ccc
}

.rlp .select-plan-btn {
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s
}

.rlp .select-plan-btn:hover {
    background: var(--primary-color)
}

.rlp .featured .select-plan-btn {
    background: var(--primary-color)
}

.rlp .featured .select-plan-btn:hover {
    background: var(--accent-color)
}

.rlp .why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
    color: #fff
}

.rlp .benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px
}

.rlp .benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0
}

.rlp .benefit-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px
}

.rlp .process-section {
    padding: 80px 0;
    background: #f8f9fa
}

.rlp .process-step {
    text-align: center;
    position: relative
}

.rlp .step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 25px
}

.rlp .step-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px
}

.rlp .cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    text-align: center
}

.rlp .cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px
}

.rlp .cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: .95
}

.rlp .cta-white-btn {
    background: #fff;
    color: var(--primary-color);
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    text-decoration: none;
    display: inline-block
}

.rlp .cta-white-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
    color: var(--primary-color)
}

.rlp .comparison-section {
    padding: 80px 0;
    background: #fff
}

.rlp .comparison-table {
    overflow-x: auto;
    margin-top: 40px
}

.rlp table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    border-radius: 10px;
    overflow: hidden
}

.rlp thead {
    background: var(--secondary-color);
    color: #fff
}

.rlp th {
    padding: 20px;
    font-weight: 600;
    text-align: left
}

.rlp td {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0
}

.rlp tr:hover {
    background: #f8f9fa
}

.rlp .table-check {
    color: var(--primary-color);
    font-weight: 600
}

.rlp .table-cross {
    color: #ccc
}

.rlp .faq-section {
    padding: 80px 0;
    background: #f8f9fa
}

.rlp .accordion-button {
    background: #fff;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem
}

.rlp .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: #fff
}

.rlp .accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color)
}

@media(max-width:768px) {
    .rlp .hero-title {
        font-size: 2.5rem
    }

    .rlp .hero-stats {
        flex-direction: column;
        gap: 20px
    }

    .rlp .pricing-card.featured {
        transform: scale(1);
        margin-bottom: 30px
    }

    .rlp .section-title {
        font-size: 2rem
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.rlp .animate-on-scroll {
    animation: fadeInUp .6s ease-out
}
